home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Games / Strategy / Darwin / Darwin for 68000 next >
Encoding:
Text File  |  1987-05-02  |  12.9 KB  |  366 lines  |  [TEXT/ttxt]

  1.                                                      (tabs every 8 columns)
  2.                               DARWIN FOR 68000
  3.                               ----------------
  4.                   
  5. DARWIN is a computer game for assembly-language computer programmers.
  6. For more information, see my article in _Computer Language_,
  7. (April 1987 issue, p. 79).  Or an earlier article in the computer
  8. recreations column of _Software--Practice and Experience_ (vol. 2,
  9. 1972, pp. 93--96).  It has now been implemented for the 68000
  10. microprocessor.  Brief details are given in this document.  But first,
  11. a copy of the rules for any computer.
  12.  
  13. ====================================================================
  14. The Rules of Darwin
  15. -------------------
  16.  
  17. The game is played in a region of computer memory
  18. called the _arena_ and is mediated by an _umpire_.  The
  19. programs (_organisms_) of one player constitute a _species_.
  20. The organism currently in control may communicate with the
  21. Umpire by means of the three Umpire calls  PROBE, KILL  and
  22. CLAIM.  PROBE  is used to ask what is in a particular part of
  23. the arena, KILL  to kill another organism and  CLAIM  to claim
  24. some empty space for the organism to reproduce itself.
  25.  
  26. Here are the official rules for Darwin.
  27.  
  28. (1) A species has a species number  N, a size  S(N), a start
  29. location  G(N)  and a set of protected locations  P(N,1),
  30. P(N,2),..., P(N,R).
  31.  
  32.     (1.1) The number of protected locations, R, is an
  33.     implementation-dependent function of the species size  S(N).
  34.  
  35.     (1.2) Each of  G(N), P(N,1),..., P(N,R)  must be less than  S(N).
  36.  
  37.     (1.3) S(N)  must be less than an implementation-defined constant  S.
  38.  
  39. (2) The game is played in a region of core called the arena, of
  40. a size  A  that is implementation-dependent.
  41.  
  42. (3) The game is managed by a program called the Umpire, which
  43. is outside the arena.
  44.  
  45. (4) An organism of species  N  is a program within the arena,
  46. which obeys the following conditions:
  47.  
  48.     (4.1) It consists of  S(N)  locations, L, L+1,..., L+S(N)-1.
  49.  
  50.     (4.2) Its protected locations are  L+P(N,1), L+P(N,2),..., L+P(N,R).
  51.  
  52.     (4.3) Its contents may be arbitrary, save that when executed
  53.     starting at  L+G(N):
  54.  
  55.         (4.3.1) It may read any location within the arena, but may not
  56.         read any location outside it.
  57.  
  58.         (4.3.2) It may write to or call or jump to any location
  59.         within itself or within an area claimed by  CLAIM, or within an
  60.         organism of the same species found by  PROBE.
  61.  
  62.         (4.3.3) It may execute any of the three Umpire calls, PROBE,
  63.         KILL  and  CLAIM.
  64.  
  65.         (4.3.4) It may not make use of input/output or of traps of any
  66.         kind that might return control to it after it had lost control.
  67.         Traps within the program may, however, be used.
  68.  
  69.     (4.4) Distinct organisms of the same species need not contain
  70.     the same code.
  71.  
  72. (5) PROBE  is a call to the Umpire with two arguments,
  73. the species number, N, of the calling organism, and a location
  74. LOC  within the arena.
  75.  
  76.     (5.1) If  LOC  is a protected location of an organism, control
  77.     is transferred to that organism (at its start location).
  78.  
  79.         (5.1.1) The new organism receives no indication of how it
  80.         obtained control.
  81.  
  82.         (5.1.2) The old organism receives no indication of how it lost
  83.         control, other than the fact that when (if ever) it regains
  84.         control, it is entered at its start location rather than at the
  85.         return from  PROBE.
  86.  
  87.         (5.1.3) On a transfer of control, all record of which
  88.         locations have been probed is lost by the Umpire.
  89.  
  90.     (5.2) If  LOC  is not a protected location of some organism,
  91.     then  PROBE  returns three numbers:  HISNO, BOT  and  TOP.
  92.  
  93.         (5.2.1) HISNO  is zero if  LOC  is empty, and otherwise the
  94.         species number of the organism occupying  LOC.
  95.  
  96.         (5.2.2) BOT  and  TOP  are the limits (first and last + 1) of
  97.         the largest contiguous block of memory surrounding  LOC,
  98.         which is empty except for the occupant of  LOC, if any.
  99.  
  100. (6) KILL  is a call to the Umpire with two arguments as for
  101. PROBE.
  102.  
  103.     (6.1) LOC  must be a location inside a block of memory probed
  104.     by an organism of the calling species, and there must be
  105.     an organism at  LOC, distinct from the calling organism,
  106.     but not necessarily of a different species (suicide
  107.     is forbidden but cannibalism is allowed).
  108.  
  109.     (6.2) The effect of  KILL  is to destroy the organism at  LOC.
  110.     The carcass is left.
  111.  
  112. (7) CLAIM  is an Umpire call with two arguments as for  PROBE.
  113.  
  114.     (7.1) LOC  must be within a block of memory that has been
  115.     probed by an organism of the calling species, and the  S(N)
  116.     locations starting with  LOC  must be empty, possibly as
  117.     a result of an intervening  KILL.
  118.  
  119.     (7.2) The effect of  CLAIM  is to cause the Umpire to record
  120.     the presence of an organism of species  N  at  LOC.
  121.  
  122.     (7.3) The calling organism may then write to or jump into the
  123.     area CLAIM'ed (presumably it will copy itself there).
  124.  
  125. (8) It is at the option of the implementation which infractions
  126. of the rules are detected.
  127.  
  128.     (8.1) A detected infraction of the rules results in
  129.     extermination of the offending species.
  130.  
  131.     (8.2) In implementations where not all illegal actions are
  132.     detected by the Umpire in the course of the game, players are
  133.     required to show one another their programs after a game and,
  134.     if necessary, explain any procedures used in order to verify
  135.     that they keep to the rules.
  136.  
  137. (9) To play a game, each player submits  K(N)  initial
  138. organisms written in an agreed language, together with a
  139. specification of the size, start location, and protected
  140. locations of his species.
  141.  
  142.     (9.1) K(N) = integral part of (size of arena)/(2*(number of
  143.     players)*S(N)).
  144.  
  145.     (9.2) The organisms are loaded at pseudo-randomly chosen
  146.     locations in the arena.
  147.  
  148.     (9.3) Control is initially given to some organism, chosen in an
  149.     implementation-dependent way.
  150.  
  151. (10) The game ends when only one species remains, or at the end
  152. of a fixed time, whichever occurs first.
  153.  
  154.     (10.1) The winner is the player whose species has most
  155.     organisms left.
  156.  
  157. =====================================================================
  158. 68000 implementation
  159. --------------------
  160.  
  161. The Umpire I have written runs on a Macintosh.  But the organisms use
  162. pure 68000 assembly language, so programmers of different 68000 machines
  163. can compete with each other.  (Umpires for other machines, however, will
  164. have to be written by owners of those machines.)  This also means that
  165. the Darwin species for 68000 may not use any of the standard Macintosh
  166. assumptions, such as where A6 points.
  167.  
  168. The species are to be written in Motorola-compatible 68000 assembly
  169. language.  Any special features of your assembler that you use, may
  170. make your program unusable by others!
  171.  
  172. The arena is presently 32 K bytes in size.  The present maximum
  173. size  S  of an organism is 256 bytes.  The number of
  174. protected cells is  R = integer part of  (S(N)/4), where  S(N)
  175. is the actual size of species number  N.  Each species loaded
  176. at the beginning of the game will consist of  K(N)  identical
  177. copies, but new organisms of the species created later need
  178. not be the same as the originals.  The original copies loaded
  179. will be at even-numbered addresses, but any organism you add later
  180. must be placed by you.  Initial control is assigned randomly.
  181.  
  182. A few other details also need to be specified.  When control is passed
  183. to your program, it will be at the entry point.  The register A6
  184. will point to the bottom of the arena.  Register A7 will contain
  185. the Umpire's stack pointer.   Since it points outside the arena,
  186. you are not allowed to use it as a stack pointer.  (If you wish,
  187. you may change it to point to a legal space for your use.
  188. But it should be restored to its original value for any Umpire call.)
  189. The three umpire calls will be made using small negative offsets
  190. from A6.  The offset amounts (called probe, kill, claim) will be
  191. added to your assembly-language program to fit the particular
  192. Umpire.
  193.  
  194. A PROBE call is done using:
  195.     jsr    probe(A6)
  196. On calling PROBE, register D0.B must contain N, the number of the
  197. species; register A0 must contain the address LOC; and register A7
  198. must contain the original Umpire stack pointer.  On return from a
  199. PROBE, register D0.B contains HISNO (between 0 and 255; 0 means
  200. unoccupied); register A1 contains BOT; register A2 contains TOP.
  201. All registers except D0,A1,A2 are preserved.
  202.  
  203. A KILL call is done using:
  204.     jsr    kill(A6)
  205. On calling KILL, register D0.B must contain N; register A0 must
  206. contain LOC, and register A7 must contain the original Umpire stack
  207. pointer.  No information is returned by KILL.  All registers except
  208. D0 are preserved.
  209.  
  210. A CLAIM call is done using:
  211.     jsr    claim(A6)
  212. On calling CLAIM, register D0.B must contain N; register A0 must
  213. contain LOC, and register A7 must contain the original Umpire stack
  214. pointer.  No information is returned by CLAIM.  All registers except
  215. D0 are preserved.
  216.  
  217. Each species to be loaded will be in the form of a binary "load
  218. module" of the following form.  No header information or "resource
  219. fork" is allowed.  (Two-byte integers are taken in BigEndian order.)
  220.  
  221.         N    Species number              2 bytes
  222.         S(N)    Length                      2 bytes
  223.         G(N)    Offset for start            2 bytes
  224.         R    No. of protected cells      2 bytes
  225.         P(N,1)
  226.         ...    Offsets of protected
  227.         ...    cells (2 bytes each)               2R bytes
  228.         P(N,R)
  229.         T    Length of identifying text    1 byte
  230.         text    Text to be displayed by
  231.                 the Umpire when this
  232.                 species is loaded           T bytes
  233.         prog    The program itself                S(N) bytes
  234.  
  235.  
  236. The assembly language source for one of the organisms would
  237. look something like the following.  Spaces marked '****' are to
  238. be filled in by the author of the program.  The five equates at
  239. the top will be added (automatically) to fit the particular
  240. Umpire to be used.
  241.  
  242.  
  243. ;myno    equ    8        ; species number
  244. ;asize    equ    32768        ; arena size
  245. ;probe    equ    -24        ; offsets from A6
  246. ;kill    equ    -16        ; .. for the three
  247. ;claim    equ    -8        ; .. umpire calls
  248.  
  249. length    equ    mytop-mybot
  250.  
  251. ldmod:                ; binary load module
  252.     dc.w    myno        ; species number
  253.     dc.w    length        ; length of program
  254.     dc.w    start-mybot    ; offset for starting address
  255.     dc.w    (prote-prot)/2    ; number of protected cells
  256. prot:    dc.w    ****        ; protected cells (offsets)
  257.     dc.w    ****
  258. prote:
  259.     dc.b    txte-txt    ; length of text
  260. txt:    dc.b    "****"        ; text displayed on loading
  261. txte:
  262.  
  263. mybot:
  264.     ****
  265. start:
  266.     ****
  267. mytop:
  268.  
  269.     end
  270.  
  271. Since copies of the program will be loaded here and there at
  272. random, the programs will either have to be relocatable or
  273. else make some adjustments on themselves when executed.
  274.  
  275. ======================================================================
  276. The Macintosh Umpire is a preliminary version.  It works, but it has
  277. no resources, and no documentation.  Perhaps there is a volunteer to
  278. write docs?  Just follow the menus.  (When you are finished loading,
  279. choose CANCEL.)
  280. ======================================================================
  281.  
  282. ; a sample DARWIN species for Macintosh (translated from the 8080)
  283. ; G. Edgar    19 April, 1987
  284.  
  285. ; five lines like the following will be added before assembly.
  286. ;myno    equ    8        ; species number
  287. ;asize    equ    32768        ; arena size
  288. ;probe    equ    -4
  289. ;kill    equ    -8
  290. ;claim    equ    -12
  291.  
  292. mysize    equ    mytop-mybot
  293.  
  294. ldmod:                ; binary load module
  295.     dc.w    myno        ; species number
  296.     dc.w    mysize        ; length of program
  297.     dc.w    start-mybot    ; offset for starting address
  298.     dc.w    (prote-prot)/2    ; number of protected cells
  299. prot:    dc.w    0,1,2,3,4    ; protected cells
  300.     dc.w    20,21,22,23
  301.     dc.w    40,41,42,43
  302.     dc.w    60,61,62,63,64
  303.     dc.w    80,81,82,83
  304.     dc.w    100,101,102,103
  305. prote:
  306.     dc.b    txte-txt    ; length of text
  307. txt:    dc.b    " ** MOLE **"
  308.     dc.b    $0D,$0A
  309.     dc.b    " GAE; 22 April 1987"
  310.     ds.w    0        ; assure even-numbered address ??
  311. txte:
  312.  
  313. ; Here is the actual code for this organism
  314. mybot:
  315.     dc.l    0        ; storage location
  316. start:
  317.     lea    mybot,a5    ; for writing to this location
  318.     move.l    (a5),d0
  319.     andi.l    #-2,d0        ; must be even
  320.     move.l    d0,a0
  321.     addq.l    #2,a0
  322.     cmpa.l    a6,a0        ; above the bottom of arena?
  323.     bcc    st1
  324.     move.l    a6,a0        ; if not, use bottom
  325. st1:
  326.     move.l    #asize,a1
  327.     add.l    a6,a1        ; top of arena
  328.     cmpa.l    a1,a0        ; below top of arena?
  329.     bcs    st2
  330.     move.l    a6,a0        ; if not, use bottom
  331. st2:
  332.     move.l    a0,(a5)        ; save for next time
  333. gprobe:
  334.     move.b    #myno,d0
  335.     jsr    probe(a6)    ; probe this location
  336.     cmp.b    #myno,d0    ; my own species?
  337.     beq    start        ; if so, try again
  338.     cmp.b    #0,d0        ; empty?
  339.     beq    empty
  340. gkill:
  341.     move.b    #myno,d0
  342.     jsr    kill(a6)    ; if not, kill it
  343. empty:
  344.     move.l    a1,a0        ; bot
  345.     sub.l    a1,a2        ; space available
  346.     cmpa.l    #mysize,a2    ; enough for me?
  347.     blt    start        ; if not, start again
  348. gclaim:
  349.     move.b    #myno,d0
  350.     jsr    claim(a6)    ; claim the space for me
  351.     move.w    #mysize-1,d1
  352.     move.l    a5,a1
  353. loop:
  354.     move.b    (a1)+,(a0)+    ; copy myself there
  355.     dbf    d1,loop
  356.     bra    start        ; and start again
  357. mytop:
  358.     end
  359.  
  360. ======================================================================
  361.                                                         May 2, 1987
  362.                             
  363. G. Edgar                                      CompuServe 70715,1324
  364. 1000 Urlin Ave                                gae@osupyr.UUCP
  365. Columbus, OH 43212                            TS1871@OHSTVMA.bitnet
  366.